home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_LOTUS.MSC < prev    next >
Text File  |  1986-11-30  |  2KB  |  82 lines

  1. ;
  2. ;    Lotus 1-2-3 Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for Lotus 1-2-3")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (20,20)     ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (0, 24)     ; (Col, Row) of menu center
  14. EnableBeep    (No)        ; Beeps if wrong button pressed with menu up
  15.  
  16. ;
  17. ;    Cursor Definitions
  18. ;
  19. ArrowKeys: Cursor
  20. (
  21.     Left    ([Left])
  22.     Right    ([Right])
  23.     Up    ([Up])
  24.     Down    ([Down])
  25. )
  26.  
  27. ;
  28. ;    Button Definitions
  29. ;
  30. LBM:    Button    (Menu(Main))        ; Left button, Main Menu
  31. MB:    Button    (Keys([Enter]))     ; Middle button
  32. RB:    Button    (Keys([Esc]))        ; Right button
  33. LBC:    Button    (Menu(Calc))        ; Left button, Calc Menu
  34.  
  35. ;
  36. ;    Menu Definitions
  37. ;
  38. Main: Menu
  39. (
  40.     Title    ("Main")
  41.     Item    ("Lotus Menu",          Keys("/"))
  42.     Item    ("Anchor",              Keys("."))
  43.     Item    ("Calc Menu",           Menu(Calc), Button(LBC))
  44.     Item    ("Edit",                Keys([F2]))
  45.     Item    ("Select",              Keys([Enter]))
  46.     Item    ("Cancel",              Keys([Esc]))
  47.     Item    ("Range Name",          Keys([F3]))
  48.     Item    ("Window",              Keys([F6]))
  49.     Item    ("Help",                Keys([F1]))
  50.     Item    ("Home",                Keys([Home]))
  51.     Item    ("End",                 Keys([End]))
  52. )
  53.  
  54. Calc: Menu
  55. (
  56.     Title    ("Calc")
  57.     Item    ("@Sum(",               Keys("@Sum("))
  58.     Item    ("Anchor",              Keys("."))
  59.     Item    (")",                   Keys(")"))
  60.     Item    ("(",                   Keys("("))
  61.     Item    ("+",                   Keys("+"))
  62.     Item    ("-",                   Keys("-"))
  63.     Item    ("*",                   Keys("*"))
  64.     Item    ("/",                   Keys("/"))
  65.     Item    ("Absolute",            Keys([F4]))
  66.     Item    ("Edit",                Keys([F2]))
  67.     Item    ("Recalc",              Keys([F9]))
  68.     Item    ("Main Menu",           Menu(Main), Button(LBM))
  69. )
  70.  
  71. ;
  72. ;    Mouse Definition
  73. ;
  74. Mouse
  75. (
  76.     Left    (LBM)          ; Left Button
  77.     Middle    (MB)          ; Middle Button
  78.     LeftRight(MB)          ; Left Right Button chord
  79.     Right    (RB)          ; Right Button
  80.     Cursor    (ArrowKeys)
  81. )
  82.